.card__container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #e5e5f7;
    background-image: radial-gradient(#EC8305 1px, transparent 0.5px), radial-gradient(#11ad18 1px, #e5e5f7 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    margin-bottom: 30px;
}

.card{
    position: relative;
    max-width: 100%;
    height: 100%;
    margin: 20px;
    border-left: 4px solid #091057;
    overflow: hidden; 
    cursor: pointer;
    background-color: white;    
}

.card img{
    width: 200px;
    height: 100px;
    object-fit: fill;
}

.tooltext{
    display: none;
    z-index: 3;
    color: #091057;
    font-size: 12px;
}


/*Fotos */

.cardphotos__container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #e5e5f7;
    background-image: radial-gradient(#EC8305 1px, transparent 0.5px), radial-gradient(#11ad18 1px, #e5e5f7 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.cardphotos{
    position: relative;
    max-width: 100%;
    height: 100%;
    margin: 20px;
    overflow: hidden; 
    cursor: pointer; 
    border-radius: 20px;
    padding-top: 30px;
}

.cardphotos:hover{
    transform: scale(1.2);
    transition: transform 0.5s ease;
    cursor: pointer;
}

.cardphotos img{
    width: 300px;
    height: 370px;
    object-fit: fill;
    border-radius: 20px;
}


